home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Info / TeachU14 / SAMS / Code / Day08 / ctmain.dfm / ctmain.txt
Encoding:
Text File  |  1998-02-08  |  1.1 KB  |  64 lines

  1. object MainForm: TMainForm
  2.   Left = 200
  3.   Top = 108
  4.   Width = 517
  5.   Height = 230
  6.   Caption = 'ComboBox Test'
  7.   Font.Charset = DEFAULT_CHARSET
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   OnCreate = FormCreate
  13.   PixelsPerInch = 96
  14.   TextHeight = 13
  15.   object Label1: TLabel
  16.     Left = 184
  17.     Top = 24
  18.     Width = 57
  19.     Height = 13
  20.     Caption = 'Drop-Down '
  21.   end
  22.   object Label2: TLabel
  23.     Left = 352
  24.     Top = 24
  25.     Width = 73
  26.     Height = 13
  27.     Caption = 'Drop-Down List'
  28.   end
  29.   object Label3: TLabel
  30.     Left = 16
  31.     Top = 24
  32.     Width = 31
  33.     Height = 13
  34.     Caption = 'Simple'
  35.   end
  36.   object DropDown: TComboBox
  37.     Left = 184
  38.     Top = 40
  39.     Width = 145
  40.     Height = 21
  41.     ItemHeight = 13
  42.     TabOrder = 0
  43.   end
  44.   object DropDownList: TComboBox
  45.     Left = 352
  46.     Top = 40
  47.     Width = 145
  48.     Height = 21
  49.     Style = csDropDownList
  50.     ItemHeight = 13
  51.     TabOrder = 1
  52.   end
  53.   object Simple: TComboBox
  54.     Left = 16
  55.     Top = 40
  56.     Width = 145
  57.     Height = 129
  58.     Style = csSimple
  59.     ImeMode = imChinese
  60.     ItemHeight = 13
  61.     TabOrder = 2
  62.   end
  63. end
  64.